main()
{
int k = 10;
clrscr();
while (k >= 1)
{
printf("\n %d", k);
k = k - 1;
}
getch();
}